home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / Online / Term / Extras / HydraCom / hydracom-source.lha / smakefile < prev   
Makefile  |  1996-10-11  |  616b  |  26 lines

  1. #    :ts=8
  2.  
  3. .c.o:
  4.     sc $(CFLAGS) $(OPTIMIZE) cpu=$(CPU) $(DEBUG) $*.c
  5.  
  6. CFLAGS =    nminc mccons streq strmerge define=__PROTO__ \
  7.         utillib
  8. LFLAGS =    sc sd noicons \
  9.         define __CXM33=__UCXM33 define __CXD33=__UCXD33 \
  10.         define __CXM22=__UCXM22 define __CXD22=__UCXD22
  11.  
  12. OPTIMIZE =    optimize nooptinlocal opttime optschedule
  13. CPU =        any
  14. #CPU =        68040
  15. DEBUG =        debug=line
  16.  
  17. OBJS =        misc.o hydracom.o hydra.o fmisc.o dos_file.o amiga.o
  18. LIBS =        lib:sc.lib lib:amiga.lib lib:debug.lib
  19.  
  20. hydracom:    $(OBJS)
  21.         slink lib:cres.o $(OBJS) to $@.debug lib $(LIBS) $(LFLAGS)
  22.         @slink $@.debug to $@ nd noicons
  23.  
  24. clean:
  25.         -delete hydracom \#?.o
  26.